summaryrefslogtreecommitdiff
path: root/app/[lng]/sales/(sales)/budgetary-tech-sales-top/page.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-06-30 08:28:13 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-06-30 08:28:13 +0000
commit5b6313f16f508882a0ea67716b7dbaa1c6967f04 (patch)
tree3d1d8dafea2f31274ace3fbda08333e889e06d1c /app/[lng]/sales/(sales)/budgetary-tech-sales-top/page.tsx
parent3f0fad18483a5c800c79c5e33946d9bb384c10e2 (diff)
(대표님) 20250630 16시 - 유저 도메인별 라우터 분리와 보안성검토 대응
Diffstat (limited to 'app/[lng]/sales/(sales)/budgetary-tech-sales-top/page.tsx')
-rw-r--r--app/[lng]/sales/(sales)/budgetary-tech-sales-top/page.tsx61
1 files changed, 61 insertions, 0 deletions
diff --git a/app/[lng]/sales/(sales)/budgetary-tech-sales-top/page.tsx b/app/[lng]/sales/(sales)/budgetary-tech-sales-top/page.tsx
new file mode 100644
index 00000000..f84a9794
--- /dev/null
+++ b/app/[lng]/sales/(sales)/budgetary-tech-sales-top/page.tsx
@@ -0,0 +1,61 @@
+import { searchParamsTopCache } from "@/lib/techsales-rfq/validations"
+import { getTechSalesTopRfqsWithJoin } from "@/lib/techsales-rfq/service"
+import { getValidFilters } from "@/lib/data-table"
+import { Shell } from "@/components/shell"
+import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
+import { RFQListTable } from "@/lib/techsales-rfq/table/rfq-table"
+import { type SearchParams } from "@/types/table"
+import * as React from "react"
+
+interface HullRfqPageProps {
+ searchParams: Promise<SearchParams>
+}
+
+export default async function HullRfqPage(props: HullRfqPageProps) {
+ // searchParams를 await하여 resolve
+ const searchParams = await props.searchParams
+
+ // 해양 TOP용 파라미터 파싱
+ const search = searchParamsTopCache.parse(searchParams);
+ const validFilters = getValidFilters(search.filters);
+
+ // 기술영업 해양 TOP RFQ 데이터를 Promise.all로 감싸서 전달
+ const promises = Promise.all([
+ getTechSalesTopRfqsWithJoin({
+ ...search, // 모든 파라미터 전달 (page, perPage, sort, basicFilters, filters 등)
+ filters: validFilters, // 고급 필터를 명시적으로 오버라이드 (파싱된 버전)
+ })
+ ])
+
+ return (
+ <Shell variant="fullscreen" className="h-full"> {/* fullscreen variant 사용 */}
+ {/* 고정 헤더 영역 */}
+ <div className="flex-shrink-0">
+ <div className="flex items-center justify-between">
+ <div>
+ <h2 className="text-2xl font-bold tracking-tight">
+ 기술영업-해양 TOP RFQ
+ </h2>
+ </div>
+ </div>
+ </div>
+
+ {/* 테이블 영역 - 남은 공간 모두 차지 */}
+ <div className="flex-1 min-h-0">
+ <React.Suspense
+ fallback={
+ <DataTableSkeleton
+ columnCount={8}
+ searchableColumnCount={2}
+ filterableColumnCount={3}
+ cellWidths={["10rem", "15rem", "12rem", "12rem", "8rem", "8rem", "10rem", "8rem"]}
+ shrinkZero
+ />
+ }
+ >
+ <RFQListTable promises={promises} className="h-full" rfqType="TOP" />
+ </React.Suspense>
+ </div>
+ </Shell>
+ )
+} \ No newline at end of file